home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / vbdatabs / groc_sh.cpp < prev    next >
C/C++ Source or Header  |  1999-03-17  |  5KB  |  150 lines

  1. // ------------------------------- //
  2. // -------- Start of File -------- //
  3. // ------------------------------- //
  4. // ----------------------------------------------------------- // 
  5. // C++ Source Code File Name: groc_sh.cpp 
  6. // Compiler Used: MSVC40, DJGPP 2.7.2.1, GCC 2.7.2.1, HP CPP 10.24
  7. // Produced By: Doug Gaer 
  8. // File Creation Date: 12/16/1997 
  9. // Date Last Modified: 03/18/1999
  10. // Copyright (c) 1997 Douglas M. Gaer
  11. // ----------------------------------------------------------- // 
  12. // ------------- Program Description and Details ------------- // 
  13. // ----------------------------------------------------------- // 
  14. /*
  15. The VBD C++ classes are copyright (c) 1997, by Douglas M. Gaer.
  16. All those who put this code or its derivatives in a commercial
  17. product MUST mention this copyright in their documentation for
  18. users of the products in which this code or its derivative
  19. classes are used. Otherwise, you have the freedom to redistribute
  20. verbatim copies of this source code, adapt it to your specific
  21. needs, or improve the code and release your improvements to the
  22. public provided that the modified files carry prominent notices
  23. stating that you changed the files and the date of any change.
  24.  
  25. THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND.
  26. THE ENTIRE RISK OF THE QUALITY AND PERFORMANCE OF THIS SOFTWARE
  27. IS WITH YOU. SHOULD ANY ELEMENT OF THIS SOFTWARE PROVE DEFECTIVE,
  28. YOU WILL ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR
  29. CORRECTION.
  30.  
  31. General purpose search functions used with the grocery list
  32. database.
  33. */
  34. // ----------------------------------------------------------- //
  35. #include "groc_sh.h"
  36. #include "btwalker.h"
  37.  
  38. // Global data structures used to organize and store btree nodes
  39. DLList<InMemCopy> GrocDB_SH_DLList;            // Doubly Linked
  40. DLList<InMemCopy> *dllist = &GrocDB_SH_DLList; // Doubly Linked
  41. DNode<InMemCopy> *dllistptr = 0;               // DLList node pointer
  42.  
  43. // Variable used to count the number of object found during a search
  44. int ObjectsFound = 0;
  45.  
  46. void BtreeSearch(Btree *btx, int item, Grocery &grocery,
  47.          UString &str, int find_all) 
  48. {
  49.   CachePointer nxt(*btx->GetCache());
  50.   BtreeWalkerb tw(btx, btINORDER);
  51.   int i, j;
  52.   nxt = btx->GetRoot();
  53.   DLList<EntryKey> list; // Short temporary list used to sort keys 
  54.   DNode<EntryKey> *ptr;  
  55.   
  56.   while((__LWORD__)nxt != 0) {
  57.     nxt = tw.Next();
  58.     if((__LWORD__)nxt) {
  59.       if(nxt->left != 0) {
  60.     for(i = 0; i < nxt->cnt; i++) {
  61.       list.StoreNode(nxt->entry[i]);
  62.     }
  63.     continue; 
  64.       }
  65.  
  66.       if(!list.IsEmpty()) {
  67.     ptr = list.GetFront();
  68.     for(i = 0, j = 0; i < nxt->cnt; i++) {
  69.       while(!list.IsHeader(ptr)) {
  70.         if(FullCompare(ptr->Data, nxt->entry[i].key) < 0) {
  71.           BtreeKeySearch(ptr->Data, item, grocery, str, find_all); 
  72.           list.Delete(ptr);
  73.         }
  74.         ptr = ptr->GetNext(); 
  75.       }
  76.     }
  77.     for(; j < nxt->cnt; j++) {
  78.       BtreeKeySearch(nxt->entry[j], item, grocery, str, find_all);
  79.     }
  80.       }
  81.       else {
  82.     for(i = 0; i < nxt->cnt; i++) {
  83.       BtreeKeySearch(nxt->entry[i], item, grocery, str, find_all); 
  84.     }
  85.       }
  86.     }
  87.   }
  88. }
  89.  
  90. void BtreeKeySearch(EntryKey &e, int item, Grocery &grocery, UString &str,
  91.              int find_all)
  92. {
  93.   int offset;
  94.   UString buf;
  95.   
  96.   if(item == NAME) {
  97.     buf = e.key;
  98.     if(find_all == 0) { // Search for single match
  99.       int result = CaseICmp(buf, str);
  100.       if(result == 0) { 
  101.     InMemCopy inmemcopy(e.key, e.object_address, e.class_id);
  102.     dllist->StoreNode(inmemcopy);
  103.     ObjectsFound++;
  104.       }
  105.     }
  106.     else { // Search for all matches
  107.       offset = buf.Find(str.c_str(), 0);
  108.       if(offset != UString::NoMatch) {
  109.     InMemCopy inmemcopy(e.key, e.object_address, e.class_id);
  110.     dllist->StoreNode(inmemcopy);
  111.     ObjectsFound++;
  112.       }
  113.     }
  114.   }
  115.   else {
  116.     grocery.ReadObject(e.object_address);
  117.     switch(item) {
  118.       case BRAND:
  119.     buf = grocery.GetBrand();
  120.     break;
  121.       case STORE:
  122.     buf = grocery.GetStore();
  123.     break;
  124.       default:
  125.     return;
  126.     }
  127.     if(find_all == 0) { // Search for single match
  128.       int result = CaseICmp(buf, str);
  129.       if(result == 0) { 
  130.     InMemCopy inmemcopy(e.key, e.object_address, e.class_id);
  131.     dllist->StoreNode(inmemcopy);
  132.     ObjectsFound++;
  133.       }
  134.     }
  135.     else { // Search for all matches
  136.       offset = buf.Find(str.c_str(), 0);
  137.       if(offset != UString::NoMatch) {
  138.     InMemCopy inmemcopy(e.key, e.object_address, e.class_id);
  139.     dllist->StoreNode(inmemcopy);
  140.     ObjectsFound++;
  141.       }
  142.     }
  143.   }
  144. }
  145. // ----------------------------------------------------------- //
  146. // ------------------------------- //
  147. // --------- End of File --------- //
  148. // ------------------------------- //
  149.  
  150.